home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2.0 - Programmer's Utilities Power Pack / Delphi 2.0 Programmer's Utilities Power Pack.iso / m_to_r / reporter / fishrpt.dpr < prev    next >
Encoding:
Text File  |  1996-09-15  |  323 b   |  16 lines

  1. program Fishrpt;
  2.  
  3. uses
  4.   Forms,
  5.   Fishrpt1 in 'FISHRPT1.PAS' {Form1},
  6.   Pstatus in '\PROJECTS\REPORTER\PSTATUS.PAS' {PrintStatusForm},
  7.   Reports in 'REPORTS.INT';
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.CreateForm(TForm1, Form1);
  13.   Application.CreateForm(TPrintStatusForm, PrintStatusForm);
  14.   Application.Run;
  15. end.
  16.